home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SUPERPD.PAK / SUPERPAD.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  50 lines

  1. // superpad.h : main header file for the SuperPad application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "resource.h"
  14. #include "pageset.h"
  15. #include "aboutbox.h"
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CTheApp
  19.  
  20. class CTheApp : public CWinApp
  21. {
  22. // Constructors
  23. public:
  24.     CTheApp();
  25.     ~CTheApp();
  26.  
  27. // Implementation
  28. private:
  29.     virtual BOOL InitInstance();
  30.     virtual int ExitInstance();
  31.     virtual BOOL OnIdle(LONG lCount);
  32.     virtual BOOL PreTranslateMessage(MSG* pMsg);
  33.  
  34.     DWORD m_dwSplashTime;
  35.     CSplashWnd m_splash;
  36.  
  37.     COleTemplateServer m_server;
  38.  
  39.     //{{AFX_MSG(CTheApp)
  40.     afx_msg void OnAppAbout();
  41.     afx_msg void OnPageSetup();
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46. extern CPageSetupDlg NEAR dlgPageSetup;
  47. extern CTheApp NEAR theApp;
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50.